home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
lisp
/
kcl
/
akcl
/
akcl1615.lha
/
xbin
/
make-fn
< prev
next >
Wrap
Text File
|
1989-09-03
|
321b
|
19 lines
#!/bin/sh
LISP=akcl
if [ $# = 2 ] ; then LISP=$2 ; fi
TMP=/tmp/tmpd$$
mkdir ${TMP}
cp $@ ${TMP}
for v in $@ ;
do
echo '(load (format nil "~a~a" si::*system-directory* "../cmpnew/collectfn"))' \
'(compiler::emit-fn t)'\
"(compile-file \"${TMP}/$v\" :o-file nil)" | ${LISP}
done
mv ${TMP}/*.fn .
rm -f -r ${TMP}